// ==UserScript== // @name 跳过DCloud 插件市场微信广告 // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.1.0 // @require https://scriptcat.org/lib/637/1.4.3/ajaxHooker.js // @run-at document-start // @grant none // @description 跳过DCloud 插件市场下载时的观看小程序广告 // @author Krystal // @match https://ext.dcloud.net.cn/* // ==/UserScript== (function () { 'use strict'; ajaxHooker.hook(request => { request.response = res => { if (request.url.includes("watch-done-plugin-ad")) { let data = JSON.parse(res.responseText) data.ret = 0 res.responseText = JSON.stringify(data) } }; }); })();